home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
eiffel
/
smalleif.97
/
se.t
/
SmallEiffel
/
lib_test
/
test_ifthenelse.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-05-02
|
288 b
|
21 lines
class TEST_IFTHENELSE
creation {ANY}
make
feature {ANY}
tab: ARRAY[BOOLEAN];
make is
do
!!tab.make(0,0);
tab.put((1=1),0);
if tab.item(0) then
else
std_output.put_string("TEST_IFTHENELSE: ERROR Test # 1.%N");
end;
end;
end -- TEST_IFTHENELSE